@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*{
    margin:0;
    padding:0;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
}

.hero{
    background:linear-gradient(135deg,#014084,#0375d8);
    color:white;
    padding:90px 0;
}

.hero h1{
    font-size:55px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    margin:20px 0;
}


.product-tag{
    display:inline-block;
    background:#f8f9fa;
    color:#005bea;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.product-img{
    max-height:420px;
    border-radius:20px;
    animation:float 4s infinite ease-in-out;
}

@keyframes float{
    
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

.feature-card{
    padding:30px;
    background:white;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-8px);
    background:linear-gradient(135deg,#0056ff,#00cfff);
}

.feature-card:hover h4,
.feature-card:hover p{
    color:#fff;
}

.feature-card:hover i{
    color:#fff;
}

.spec-section{
    background:#f5f8fc;
    padding:80px 0;
}

.table{
    background:white;
}

.table th{
    width:35%;
    background:#0344a6;
    color:white;
}

.app-box{
    padding:30px;
    background:white;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    font-weight:bold;
    transition:.3s;
}

.app-box:hover{
    background:#024cbb;
    color:white;
    transform:translateY(-5px);
}

.cta{
    background:#2a569a;
    color:white;
    padding:80px 0;
}

/* Footer */
.footer{
    background:#003366;
    color:#fff;
    padding:25px 0;
}

.btn-light{
    font-weight:bold;
    padding:14px 35px;
    border-radius:40px;
}

@media(max-width:768px){
    
    .hero{
        text-align:center;
    }
    
    .hero h1{
        font-size:38px;
    }

    .product-img{
        margin-top:40px;
        max-height:300px;
    }
}